home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr44 / newmat08.zip / NEWMATIO.H < prev    next >
C/C++ Source or Header  |  1995-01-11  |  888b  |  47 lines

  1. //$$ newmatio.h           definition file for matrix package input/output
  2.  
  3. // Copyright (C) 1991,2,3,4: R B Davies
  4.  
  5. #ifndef NEWMATIO_LIB
  6. #define NEWMATIO_LIB 0
  7.  
  8. #ifndef WANT_STREAM
  9. #define WANT_STREAM
  10. #endif
  11.  
  12. #include "newmat.h"
  13.  
  14. /**************************** input/output *****************************/
  15.  
  16. ostream& operator<<(ostream&, const BaseMatrix&);
  17.  
  18. ostream& operator<<(ostream&, const GeneralMatrix&);
  19.  
  20.  
  21. /*  Use in some old versions of G++ without complete iomanipulators
  22.  
  23. class Omanip_precision
  24. {
  25.    int x;
  26. public:
  27.    Omanip_precision(int i) : x(i) {}
  28.    friend ostream& operator<<(ostream& os, Omanip_precision i);
  29. };
  30.  
  31.  
  32. Omanip_precision setprecision(int i);
  33.  
  34. class Omanip_width
  35. {
  36.    int x;
  37. public:
  38.    Omanip_width(int i) : x(i) {}
  39.    friend ostream& operator<<(ostream& os, Omanip_width i);
  40. };
  41.  
  42. Omanip_width setw(int i);
  43.  
  44. */
  45.  
  46. #endif
  47.